home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Harvest C 1.3 / Source Code / CHarvestOptions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-04  |  505 b   |  27 lines  |  [TEXT/KAHL]

  1. /****
  2.  * CHarvestOptions.h
  3.  *
  4.  *    Document class for a typical application.
  5.  *
  6.  ****/
  7.  
  8. #define    _H_CHarvestOptions            /* Include this file only once */
  9. #include <CObject.h>
  10.  
  11. struct CHarvestOptions : CObject {
  12.     public:
  13.     Boolean trigraphs;
  14.     Boolean requireProtos;
  15.     Boolean useMC68020;
  16.     Boolean useMC68881;
  17.     Boolean signedChars;
  18.     Boolean MacsBugSymbols;
  19.     Boolean int2byte;
  20.     Boolean progress;
  21.     Boolean bigGlobals;
  22.     Boolean allWarnings;
  23.     Boolean noWarnings;
  24.     Boolean warnings[64];
  25.  
  26.     void IHarvestOptions(void);
  27. };